home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 376_04 / os2tool.003 / TOUCH.MAK < prev    next >
Encoding:
Text File  |  1992-08-06  |  450 b   |  20 lines

  1. # Makefile for TOUCH.EXE
  2. #
  3. # Compiler        : Microsoft C 6.0
  4. # Created         : 4.8.1992
  5. # Copyright (c)   : Martti Ylikoski, 1992
  6. #
  7. # Notes: The llibcep.lib is the default library in my system
  8. #   and is therefore renamed llibce.lib.
  9.  
  10. touch.exe: touch.obj 
  11.    link /NOE touch.obj setargv.obj, , NUL.MAP,mtoolsp, ,
  12.    bind touch.exe
  13.    exehdr /PMTYPE:VIO touch.exe
  14.    del touch.obj 
  15.  
  16. touch.obj: touch.c
  17.    CL -AL -c touch.c
  18.  
  19.